(C) 1996 AROS - The Amiga Replacement OS


NAME
#include <stdio.h>
#include <stdarg.h>
int vsprintf()
SYNOPSIS
char * str
const char * format
va_list args

FUNCTION
Format a list of arguments and put them into the string str.

INPUTS
str
The formatted result is stored here
format
A printf() format string.
args
A list of arguments for the format string.
RESULT
The number of characters written.

NOTES
No check is beeing made that str is large enough to contain the result.

EXAMPLE
BUGS
SEE ALSO
printf(), sprintf(), fprintf(), vprintf(), vfprintf(), snprintf(), vsnprintf()
INTERNALS
HISTORY
08.01.1997 ldp
Removed/Changed cases of multiple include files
11.12.1996 aros
New functions: sprintf(), vsprintf(), snprintf() vsnprintf()

vfprintf() now uses __vcformat()